* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}
body {
  background-color: #1f1f47;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}
.wapper {
  background: rgba(225, 225, 225, 0.15);
  box-shadow: 0 8px 32px rgb(31, 38, 135, 0.18);
  border: solid 1px rgb(225, 225, 225, 0.72);
  width: 400px;
  height: 450px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.wapper h2 {
  text-align: center;
  color: #fff;
  font-size: 2em;
}
.input-box {
  margin: 30px 0;
  width: 320px;
  border-bottom: 2px solid #fff;
  position: relative;
}
.input-box input {
  background-color: transparent;
  outline: none;
  border: none;
  color: #fff;
  width: 100%;
  height: 50px;
  font-size: 1em;
  padding: 0 50px 0 5px;
}

.input-box label {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  color: #fff;
  transition: 0.5s;
}
.input-box input:focus ~ label,
.input-box input:valid ~ label {
  top: 5px;
}
.input-box .icon {
  position: absolute;
  color: #fff;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  font-size: 1.2em;
}
.remember-forgot {
  display: flex;
  margin: -15px 0 15px;
  font-size: 0.9em;
  color: #fff;
  justify-content: space-between;
}
.remember-forgot a {
  font-size: 0.9em;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.remember-forgot a:hover {
  text-decoration: underline;
}
.button input {
  background-color: #cd215b;
  width: 100%;
  height: 50px;
  outline: none;
  border: none;
  border-radius: 25px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin: 12px 0;
  cursor: pointer;
}

.register {
  text-align: center;
  font-size: 15px;
  color: #fff;
  margin-top: 10px;
}
.register a {
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.register a:hover {
  text-decoration: underline;
}
/* emd form */
.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(
    180deg,
    rgba(47, 184, 225, 0.42) 31.77%,
    #5c9df1 100%
  );
  border-radius: 22% 78% 24% 76% / 30% 30% 70% 70%;
  transform: translate(-100px, -50px) rotate(-90deg);
  transition: 1s cubic-bezier(0.07, 0.8, 0.16, 1);
  animation: moving infinite 15s alternate;
}
.blob:hover {
  filter: blur(30px);
  width: 520px;
  height: 520px;
  box-shadow: 0 0 0 5px inset rgb(225, 225, 225, 0.6),
    inset 100px 100px 0 0 #fa709a, inset 200px 200px 0 0 #784ba8,
    inset 300px 300px 0 0 #2b86ca;
}
@keyframes moving {
  0% {
    /* background: linear-gradient(180deg, #fa709a 31.77%, #5c9df1 100%);   
    */
    transform: translate(-100px, -50px) rotate(-90deg);
    border-radius: 22% 78% 24% 76% / 30% 30% 70% 70%;
  }
  100% {
    transform: translate(350px, -90px) rotate(-10deg);
    border-radius: 80% 20% 34% 66% / 47% 30% 70% 53%;
  }
}

.blob2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(180deg, #cf6987 31.77%, #5c9df1 100%);
  /* background: linear-gradient(
    180deg,
    rgba(47, 184, 225, 0.42) 31.77%,
    #5c9df1 100%
  ); */
  border-radius: 22% 78% 24% 76% / 30% 30% 70% 70%;
  transform: translate(100px, 50px) rotate(90deg);
  transition: 1s cubic-bezier(0.07, 0.8, 0.16, 1);
  animation: moving infinite 15s alternate;
}
.blob2:hover {
  filter: blur(30px);
  width: 520px;
  height: 520px;
  box-shadow: 0 0 0 5px inset rgb(225, 225, 225, 0.6),
    inset 100px 100px 0 0 #fa709a, inset 200px 200px 0 0 #784ba8,
    inset 300px 300px 0 0 #2b86ca;
}
@keyframes moving {
  0% {
    /* 
    */
  }
  100% {
    transform: translate(-350px, 90px) rotate(10deg);
    border-radius: 80% 20% 34% 66% / 47% 30% 70% 53%;
  }
}
